home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / include / nessus / getopt.h < prev    next >
C/C++ Source or Header  |  2006-06-13  |  6KB  |  170 lines

  1. /* Declarations for getopt.
  2.    Copyright (C) 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify it
  5.    under the terms of the GNU General Public License as published by the
  6.    Free Software Foundation; either version 2, or (at your option) any
  7.    later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Modified for use with Nessus by <jordan@mjh.teddy-net.com>
  19.    $Id: getopt.h,v 1.8 2001/10/15 17:57:50 renaud Exp $ */
  20.  
  21. #ifndef _GETOPT_H
  22. #define _GETOPT_H 1
  23.  
  24. #ifdef _CYGWIN_
  25. #undef _WIN32
  26. #endif
  27.  
  28. #ifdef _WIN32
  29. #define APPLY_OPTVAR_REPLACEMENTS 1
  30. #endif
  31.  
  32. #ifdef    __cplusplus
  33. extern "C" {
  34. #endif
  35.  
  36. /* For communication from `getopt' to the caller.
  37.    When `getopt' finds an option that takes an argument,
  38.    the argument value is returned here.
  39.    Also, when `ordering' is RETURN_IN_ORDER,
  40.    each non-option ARGV-element is returned here.  */
  41.  
  42. extern char *optarg;
  43.  
  44. /* Index in ARGV of the next element to be scanned.
  45.    This is used for communication to and from the caller
  46.    and for communication between successive calls to `getopt'.
  47.  
  48.    On entry to `getopt', zero means this is the first call; initialize.
  49.  
  50.    When `getopt' returns EOF, this is the index of the first of the
  51.    non-option elements that the caller should itself scan.
  52.  
  53.    Otherwise, `optind' communicates from one call to the next
  54.    how much of ARGV has been scanned so far.  */
  55.  
  56. extern int optind;
  57.  
  58. /* Callers store zero here to inhibit the error message `getopt' prints
  59.    for unrecognized options.  */
  60.  
  61. extern int opterr;
  62.  
  63. /* Set to an option character which was unrecognized.  */
  64.  
  65. extern int optopt;
  66.  
  67. /* Describe the long-named options requested by the application.
  68.    The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
  69.    of `struct option' terminated by an element containing a name which is
  70.    zero.
  71.  
  72.    The field `has_arg' is:
  73.    no_argument        (or 0) if the option does not take an argument,
  74.    required_argument    (or 1) if the option requires an argument,
  75.    optional_argument     (or 2) if the option takes an optional argument.
  76.  
  77.    If the field `flag' is not NULL, it points to a variable that is set
  78.    to the value given in the field `val' when the option is found, but
  79.    left unchanged if the option is not found.
  80.  
  81.    To have a long-named option do something other than set an `int' to
  82.    a compiled-in constant, such as set a value from `optarg', set the
  83.    option's `flag' field to zero and its `val' field to a nonzero
  84.    value (the equivalent single-letter option character, if there is
  85.    one).  For long options that have a zero `flag' field, `getopt'
  86.    returns the contents of the `val' field.  */
  87.  
  88. struct option
  89. {
  90. #if    __STDC__
  91.   const char *name;
  92. #else
  93.   char *name;
  94. #endif
  95.   /* has_arg can't be an enum because some compilers complain about
  96.      type mismatches in all the code that assumes it is an int.  */
  97.   int has_arg;
  98.   int *flag;
  99.   int val;
  100. };
  101.  
  102. /* Names for the values of the `has_arg' field of `struct option'.  */
  103.  
  104. #define    no_argument        0
  105. #define required_argument    1
  106. #define optional_argument    2
  107.  
  108. #if __STDC__
  109. #if 0 /* we do not use getopt, here with nessus */
  110. #if defined(__GNU_LIBRARY__)
  111. /* Many other libraries have conflicting prototypes for getopt, with
  112.    differences in the consts, in stdlib.h.  To avoid compilation
  113.    errors, only prototype getopt for the GNU C library.  */
  114. extern int getopt (int argc, char *const *argv, const char *shortopts);
  115. #else /* not __GNU_LIBRARY__ */
  116. extern int getopt ();
  117. #endif /* not __GNU_LIBRARY__ */
  118. #endif /* we do not use getopt, here with nessus */
  119. #ifdef APPLY_OPTVAR_REPLACEMENTS
  120. extern char *get_optarg (void);
  121. extern int get_opterr (void);
  122. extern int get_optind (void);
  123. extern int get_optopt (void);
  124. extern int inc_optind (void);
  125. #endif /* APPLY_OPTVAR_REPLACEMENTS */
  126. extern int getopt_long (int argc, char *const *argv, const char *shortopts,
  127.                 const struct option *longopts, int *longind);
  128. extern int getopt_long_only (int argc, char *const *argv,
  129.                  const char *shortopts,
  130.                      const struct option *longopts, int *longind);
  131.  
  132. /* Internal only.  Users should not call this directly.  */
  133. extern int _getopt_internal (int argc, char *const *argv,
  134.                  const char *shortopts,
  135.                      const struct option *longopts, int *longind,
  136.                  int long_only);
  137. #else /* not __STDC__ */
  138. #ifdef APPLY_OPTVAR_REPLACEMENTS
  139. extern char *get_optarg ();
  140. extern int get_opterr ();
  141. extern int get_optind ();
  142. extern int get_optopt ();
  143. extern int inc_optind ();
  144. #endif /* APPLY_OPTVAR_REPLACEMENTS */
  145. extern int getopt ();
  146. extern int getopt_long ();
  147. extern int getopt_long_only ();
  148.  
  149. extern int _getopt_internal ();
  150. #endif /* not __STDC__ */
  151.  
  152. #ifdef APPLY_OPTVAR_REPLACEMENTS
  153. #define optind get_optind ()
  154. #define optarg get_optarg ()
  155. #define opterr get_opterr ()
  156. #define optopt get_optopt ()
  157. #else /* APPLY_OPTVAR_REPLACEMENTS */
  158. #define inc_optind() (optind ++)
  159. #define get_optind() (optind)
  160. #define get_optarg() (optarg)
  161. #define get_opterr() (opterr)
  162. #define get_optopt() (optopt)
  163. #endif /* APPLY_OPTVAR_REPLACEMENTS */
  164.  
  165. #ifdef    __cplusplus
  166. }
  167. #endif
  168.  
  169. #endif /* _GETOPT_H */
  170.